Data transmission types and methods
Objectives : Student should be able to -
► Data Packets
Q1. a) Explain what is meant by Data Packet .
b) Describe the structure of data packet.
![]() |
Figure : Data Packet Structure |
c) Data packets contain a header. Name three components of header that you would expect to find in a packet.
The packet header consists of -
d) Data packets also have a payload and a trailer . Explain these two terms.
(1) Payload :
⇒ Payload refers to the actual data being transported by the packet. (usually about 64KiB).
⇒ The payload is the only data collected for processing, after removing the header and trailer from the packet when it reaches the destination.
(2) Trailer :
⇒ Trailer contains few bits of information that marks the end of packet. It allows each packet to be separated from each other.
⇒ It also contains an error checking protocol called Cyclic Redundancy Check (CRC) which enables the computer to check if all the packets were received without error.
Q2. Describe what is meant by Packet switching.
Q3. Describe different stages of packet switching while transmitting data over a network.
Q4. The diagram below shows how a message is split up into a number of packets before it is sent from computer ‘A’ to computer ‘B’ through several possible paths.
a) Using the above diagram, explain how packet switching works when sending a 500KiB file from computer 'A' to computer 'B'.
b) Using the diagram, explain why data packets need to be reassembled at computer 'B'.
Q5. Packet switching is used to send packets of data over a network.
a) Give three benefits of using packet switching.
b) Give three disadvantages of using packet switching.
c) Data packets can get lost due to 'bouncing' around from router to router and never reaching their destination.
(i) Describe the problems caused by data packet 'bouncing' .
⇒ Bouncing refers to the transfer of a data packet from router to router and not able to locate its final destination. Data packets that bounce around too many times may get lost.
(ii) Explain how Hopping is used to prevent data packets being lost due to bouncing.
⇒ Hopping is a method to overcome bouncing problem, where a hop number is added to the header of each packet, and this number is reduced by 1 every time it leaves a router.
⇒ Each packet has a maximum hop number to start with. Once a hop number reaches zero, and the packet hasn't reached its destination, then the packet is deleted when it reaches the next router.
⇒ The missing packets will then be flagged by the receiving computer and a request to re-send these packets will be made.
![]() |
Figure : Hop numbers between routers |
Q6. a) The trailer in a packet will use one form of error checking.
Explain what is meant by a Cycle Redundancy Check (CRC) .
⇒ CRC is an error checking method, where the sender adds up all the 1-bits in the payload and store it as a hex value in the trailer before transmission.
⇒ Once the packet arrives, the receiver recalculates the number of 1-bits in the payload and compare it with the received hex value in the trailer.
⇒ If it matches, then the data received is considered as error free, otherwise a requests for re-transmission is made.
b) The payload contains the following data :
11110000 10000011 00110011 00111111 11111110 11100011
Use this data to show how the receiving computer can verify that the received payload was error-free.
⇒ Count the number of 1-bits in payload, the sum of all the 1s is 29.
⇒ Convert denary 29 into hexadecimal, which is 1D.
⇒ If the trailer of the received packet contains the hex value 1D, then the data received is considered error free.
Q7. Suppose a video conference is taking place between delegates in two different countries. Packet switching is being used to send video and sound data between the delegates :
![]() |
a) Describe any potential problems with sound and video quality.
⇒ Packet switching allows equal sharing of bandwidth but cannot give guarantee about the quality or latency (delay in communication) of the data for real-time streaming.
⇒ Packet loss occurs when one or more transmitted data packets fail to arrive at their destination.
⇒ If packet loss rate is high or there is high latency, it can cause delays to be worse for real-time streaming applications like voice and video.
⇒ The user may experience disruptions, such as slow service or loss of network connectivity that affects the sound and video quality.
Note : Packet switching is useful for transferring data that doesn’t require real-time responsiveness.
b) Describe how these problems could be caused.
⇒ In packet switching, the data packet could move from router to router and not able to locate its final destination.
⇒ Data packets that bounce around too many times may get lost.
⇒ Packet loss is typically caused either by errors in data transmission or network congestion.
c) Describe how it is possible for a system to deal lost packets and prevent them from slowing down the transmission process.
⇒ A hop number is added to the header of each packet, and this number is reduced by 1 every time it leaves a router.
⇒ Once a hop number reaches zero, and the packet hasn't reached its destination, then the packet is deleted.
⇒ And request to retransmission of the packet is made.
d) Explain why you think packet switching might improve data security.
► Modes of data transmission : Simplex, Half-duplex & Full-duplex transmission.
Mode of data transmission refers to the direction of the flow of data, whether in one direction only or in both direction.
![]() |
Figure : Transmission modes |
Q1. Give difference between Simplex, Half-duplex and Duplex ways of transmission.
Simplex : Simplex data transmission allows data to flow in one direction only, that is, from sender to receiver only.
Example : Sending data from a computer to a printer.
Half-duplex : Half-duplex data transmission allows data to flow in both directions but not at the same time.
Example : Walkie-talkie conversation where only one person speaks at a time.
Duplex : Full-duplex data transmission allows data to flow in both direction simultaneously at the same time.
Example : Telephony (VoIP Call) and Video chatting.
► Types of data transmission : Serial & Parallel Transmission
Types of data transmission refers to the method of in which bits are transmitted over the communicational channel, whether in one bit or multiple bits are sent at a time.
![]() |
Figure : Types of data transmission |
Q1. Describe Serial data transmission .
⇒ Transfer of data bits, one bit at a time, sequentially over a single communication line or wire.
⇒ Data arrives at its destination fully synchronised in the correct order.
⇒ Serial data transmission works well over long distances.
⇒ Data is transmitted at a slower rate than parallel because it uses only one wire or channel.
Q2. Describe Parallel data transmission .
⇒ Transfer of data bits, several bits at a time (usually 8-bits), simultaneously over separate communication line or wire.
⇒ Over longer distances, data can become skewed or unsynchronised.
⇒ Parallel data transmission works well over short distances.
⇒ Internal circuits of computer uses parallel transmission because it is faster than serial as it uses multiple wires or channels.
Q3. Give difference between Serial and Parallel transmission .
Q4. Give two advantages and disadvantages of Serial transmission .
Advantages DisadvantagesReduces the cost as it uses single wire.
Serial transmission is slower than parallel. Perfect for transmitting over longer distances as there are no synchronisation issues. Use of conversion devices at source and distination may increase the cost. (To convert parallel to serial vise versa) It has less chance of data being distorted or skewed. It occupies 20% of overhead additional data than useful information leading to wastage of bandwidth.
Q5. Give two advantages and disadvantages of Parallel transmission .
Advantages DisadvantagesParallel transmission is faster than serial.
It is a costly as it require multiple wires. It is ideal for transferring data over short distances. Data could be out of synchronisation, it could be skewed or distorted when transmitted over a long distances. Cross-talk between parallel lines of wires is possible.
Q6. Give three application of Serial transmission.
Q7. Give three application of Parallel transmission.
Q8. Give three reasons why serial transmission, rather than parallel transmission is used to connect devices to a computer.
► Universal Serial Bus (USB)
Q1. a) Describe USB (Universal Serial Bus) .
⇒ USB is an external bus with plug-and-play interface.
⇒ It is used to connect external peripheral devices with computer.
⇒ It uses asynchronous serial data transmission. Allows both hulf-duplex and full-duplex.
⇒ It provides power supply to the peripheral devices.
![]()
⇒ The USB cable consists of a four-wired shielded cable, with two wires for power (red and black). The other two wires (white and green) are for data transmission.
b) Give three reasons of using USB ports over traditional Serial ports.
Q2. Give three benefits and drawbacks of using the USB System.
Q3. Explain what happens when a device is plugged into a computer using one of the USB ports.
⇒ The USB port provides power supply to the device, to activate and communicate with computer.
⇒ The OS (operating system) sends a request to the USB port to identify the device.
⇒ The unique vendor-id, serial number and type of the device stored in device descriptor is send to the OS.
⇒ The OS compares the information of device descriptor with the descriptor of the vendor specific device driver installed with OS.
⇒ If it matches, then it will be loaded the device driver automatically.
⇒ If it doesn’t match, then OS will ask the user to install the driver software for that device.
Q4. State different types of USB ports found in desktop and laptops.
The three default or standard format of USB port or connectors found in desktop or laptops are -
USB - A : The most common rectangular connector that only fits in only one way. Most of the Portable Storage devices uses USB-A connector. It is primarily be used on host computers and hubs. You won't find cables with USB-A on either end. In fact, connecting two computers with a USB-A cable could damage them both. USB - B : This is an older connector, almost square at one end, designed for USB peripherals, such as printer, upstream port on hub, or other larger peripheral devices. It is designed to allow the connection of peripheral devices without running the risk of connecting two host computers to one another. USB - C : It is the latest USB standard, which is a 24-pin connector that can fit into a USB-C port in either way round. It is much smaller and thinner than older USB connectors. It offers 100 watt (20 volt) power connectivity, which means full-sized devices can now be charged. It can carry data at 10 gigabits per second and can support DisplayPort and HDMI mode to transfer video and audio signal. USB-C is backward compatible (to USB 2.0 and 3.0) and is expected to become the new industry standard (universal) format.
► Asynchronous & Synchronous transmission
Asynchronous & Synchronous transmission refers to the method of transmitting and collecting data back, and make sure that the received data is in the correct order.
Q1. Give difference between Asynchronous and Synchronous data transmission with example.
Asynchronous transmission ⇒ Asynchronous data transmission refers to the data being transmitted in an agreed bit pattern, grouped together with the start and end control bits.
⇒ The receiver detects the start and end bit of the data to know when the data starts and when it ends.
Example : Data transmitted from satellite to the earth station. Discussion forums and email where sender and receiver need not to be present at both ends at the same time. MIDI music file uses asynchronous protocol to play musical instruments.
Synchronous transmission ⇒ Synchronous data transmission is a continuous streaming of data included with timing signal generated by an internal clock to ensure that the sender and receiver are synchronized with each other.
⇒ Synchronous data transmission is faster than asynchronous and is used where speed is an important issue.
Example : VoIP (Telephony) and Video calls. Network communication. Playing online Games.
Q2. Describe how it is possible to ensure data arrives correctly identified at its destination when using Asynchronous data transmission.
⇒ The receiver detects the start and end bit of the data to know when the data starts and when it ends.
⇒ Without these control bits, it would be impossible to separate groups of data as they arrives.
⇒ This prevents data becoming mixed up.
Q3. a) Describe how it is possible to ensure data arrives correctly identified at its destination when using Synchronous data transmission.
⇒ Transmits data in a continuous stream included with timing signals generated by an internal clock.
⇒ The receiver counts how many bits were sent and then reassembles them into bytes of data with accurate timing.
⇒ This ensures that the sender and receiver are synchronized with each other.
b) Give one advantage and one disadvantage of using Synchronous data transmission.
Advantage :Much faster data transmission rate than asynchronous. Disadvantage :If the timing is not accurate, data will be out of synch.
Q4. Give difference between Asynchronous transmission and Synchronous transmission.
Asynchronous |
Synchronous |
Transfer of data with start and stop bits; that allows the receiver to know when it starts and ends to reassemble the data. | Transfer of data included with timing signal; the receiver counts how many bits were sent over a period of time and reassemble them. |
Timing is not important. | Timing is important. |
Sends 1-byte or a single character at a time with variable gaps between each data unit. | Sends several bytes of data in the form of blocks or frames; as continuous stream without gap between them. |
Occur at different time and at different place. | Occur at the same time but at different place. |
Sender and Receiver need not to be active during transmission. If receiver is not there while sending data, data will be put in queue. | Sender and Reveiver need to be active during transmission. Receiver must be there to receive data in real-time. |
Can use both forward and backward error correction method. | Can only use forward error correction method, not use backward error. |
REVISION : Statements and its key computing terms.
Data packet | A small part of a message/data that is transmitted over a network; after transmission all the data packets are reassembled to form the original message/data. |
Packet header | The part of the data packet that contains the IP addresses of the sender and receiver, and includes the packet number which allows reassembly of the data packets. |
Packet trailer (or footer) | The part of a data packet that indicates the end of the data packet and cyclic redundancy check error check. |
Payload | The actual data being carried in a data packet. |
Node | Stages in a network that can receive and transmit data packets; routers are nodes in communication networks. |
Packet switching | A method of transmission in which a message is broken into many data packets which can then be sent along pathways independently of each other. |
Router | A device that enables data packets to be moved between different networks, for example to join a LAN and a WAN. |
Real time streaming | The transmission of data over a network for live events where the data is sent as soon as it is received or generated. |
Hopping / hop number | A number in a data packet header used to stop data packets that never reach their destination from 'clogging up' the data paths/routes. |
Simplex | Data that can be sent on one direction only. |
Half-duplex | Data that can be sent in both directions but not at the same time. |
Full-duplex | Data that can be sent in both directions at the same time simultaneously. |
Serial data transmission | Sending data down one channel/wire one bit at a time. |
Parallel data transmission | Sending data down several channels/wires several bits at a time (usually 1 byte). |
Skewed (data) | Data that arrives at the destination with the bits no longer synchronised. |
Universal Serial Bus (USB) | A type of serial data transmission which has become the industry standard for connecting computers to devices via a USB port. |